
@import 'variables.css';

.about-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    margin: 5px;
}

.tab-button.active {
    background-color: #007bff;
    color: #fff;
}

.outer-shadow {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Media Query for Responsive Layout */
@media (max-width: 768px) {
    .tab-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.buttons-group {
    display: flex;
    justify-content: center;
    margin: 50px 0 30px 0px; 
    gap: 10px;
}

.container .buttons-group button{
    background: var(--light-blue);
    font-weight: 500;
    border-radius: 12px;
    padding: 7px;
}

